home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Info-Mac 3
/
Info_Mac_1994-01.iso
/
Development
/
General
/
GCC 1.37.1r15
/
Tests
/
fnptr.c
< prev
next >
Wrap
C/C++ Source or Header
|
1993-04-12
|
97b
|
11 lines
void f();
void (*fp)() = f;
/* returns 0, but should return 1 */
main()
{
return *fp == f;
}